/-app
Application.ts
/-boot
boot.css
early.js
/-imports
/-storage
/-typings
stringUtils.ts
teapo.html
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title>TEAPO v0.5</title>
5
  
6
<style>###boot/boot.css###</style>
7
</head>
8
<body>
9
 
10
<script>###boot/early.js###</script>
11
 
12
<script>
13
(function() {
14
 
15
###app/Application.ts:build###
16
 
17
var app = new Application();
18
 
19
})();
20
</script>
21
</body>
22
</html>